0_0_37349093_14777.cpp:1:1: error: 'include' does not name a type
include<iostream>
^
0_0_37349093_14777.cpp: In function 'int main()':
0_0_37349093_14777.cpp:6:5: error: 'cin' was not declared in this scope
cin>>t;
^
0_0_37349093_14777.cpp:10:23: error: 'cout' was not declared in this scope
if(n%10==0) {cout<<0<<endl;}
^
0_0_37349093_14777.cpp:10:32: error: 'endl' was not declared in this scope
if(n%10==0) {cout<<0<<endl;}
^
0_0_37349093_14777.cpp:11:29: error: 'cout' was not declared in this scope
else if(n%10==1) {cout<<1<<endl;}
^
0_0_37349093_14777.cpp:11:38: error: 'endl' was not declared in this scope
else if(n%10==1) {cout<<1<<endl;}
^
0_0_37349093_14777.cpp:12:29: error: 'cout' was not declared in this scope
else if(n%10==4) {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:12:38: error: 'endl' was not declared in this scope
else if(n%10==4) {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:13:29: error: 'cout' was not declared in this scope
else if(n%10==5) {cout<<5<<endl;}
^
0_0_37349093_14777.cpp:13:38: error: 'endl' was not declared in this scope
else if(n%10==5) {cout<<5<<endl;}
^
0_0_37349093_14777.cpp:14:29: error: 'cout' was not declared in this scope
else if(n%10==6) {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:14:38: error: 'endl' was not declared in this scope
else if(n%10==6) {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:15:29: error: 'cout' was not declared in this scope
else if(n%10==9) {cout<<9<<endl;}
^
0_0_37349093_14777.cpp:15:38: error: 'endl' was not declared in this scope
else if(n%10==9) {cout<<9<<endl;}
^
0_0_37349093_14777.cpp:18:25: error: 'cout' was not declared in this scope
if(n%4==2) {cout<<4<<endl;}
^
0_0_37349093_14777.cpp:18:34: error: 'endl' was not declared in this scope
if(n%4==2) {cout<<4<<endl;}
^
0_0_37349093_14777.cpp:19:20: error: 'cout' was not declared in this scope
else {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:19:29: error: 'endl' was not declared in this scope
else {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:23:25: error: 'cout' was not declared in this scope
if(n%4==1) {cout<<3<<endl;}
^
0_0_37349093_14777.cpp:23:34: error: 'endl' was not declared in this scope
if(n%4==1) {cout<<3<<endl;}
^
0_0_37349093_14777.cpp:24:20: error: 'cout' was not declared in this scope
else {cout<<7<<endl;}
^
0_0_37349093_14777.cpp:24:29: error: 'endl' was not declared in this scope
else {cout<<7<<endl;}
^
0_0_37349093_14777.cpp:28:25: error: 'cout' was not declared in this scope
if(n%4==1) {cout<<7<<endl;}
^
0_0_37349093_14777.cpp:28:34: error: 'endl' was not declared in this scope
if(n%4==1) {cout<<7<<endl;}
^
0_0_37349093_14777.cpp:29:20: error: 'cout' was not declared in this scope
else {cout<<3<<endl;}
^
0_0_37349093_14777.cpp:29:29: error: 'endl' was not declared in this scope
else {cout<<3<<endl;}
^
0_0_37349093_14777.cpp:33:25: error: 'cout' was not declared in this scope
if(n%4==2) {cout<<4<<endl;}
^
0_0_37349093_14777.cpp:33:34: error: 'endl' was not declared in this scope
if(n%4==2) {cout<<4<<endl;}
^
0_0_37349093_14777.cpp:34:20: error: 'cout' was not declared in this scope
else {cout<<6<<endl;}
^
0_0_37349093_14777.cpp:34:29: error: 'endl' was not declared in this scope
else {cout<<6<<endl;}
^
|