#640. NOIP2014TG-23

NOIP2014TG-23

当前没有测试数据。

  1. (阅读程序写结果)
#include<iostream> 
using namespace std;

int main(){ 
  int a,b,i,tot,c1,c2; 
  cin>>a>>b; 
  tot=0; 
  for(i=a;i<=b;i++)
  { 
    c1=i/10; 
    c2=i%10;
    if((c1+c2)%3==0)
      tot++; 
  } 
  cout<<tot<<endl; 
  return 0; 
} 

输入:

7 31

输出:{{ input(1) }}