Cho tệp KTHK2.TXT chứa các cặp số nguyên dương x, y mỗi cặp lưu trên một dòng. Viết chương trình đọc các số trong tệp KTHK2.TXT ra theo cặp và ghi vào tệp KQ.TXT nhữnng cặp số mà X và Y a, đều không chia hết cho 2
b, đều chia hết cho 5
Mình chân thành cảm ơn ai giúp mình câu này ạ
a)
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int x,y;
ifstream inp(“C:\\Users\\hao20\\Desktop\\input.txt”);
ofstream out(“C:\\Users\\hao20\\Desktop\\output.txt”);
out<<“Cac cap so deu khong chia het cho 2:\n”;
while(!inp.eof()){
inp>>x>>y;
if(x%2==1&&y%2==1){
out<<x<<” “<<y<<endl;
}
}
inp.close();
out.close();
//samon247
return 0;
}
b)
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int x,y;
ifstream inp(“C:\\Users\\hao20\\Desktop\\input.txt”);
ofstream out(“C:\\Users\\hao20\\Desktop\\output.txt”);
out<<“Cac cap so deu chia het cho 5:\n”;
while(!inp.eof()){
inp>>x>>y;
if(x%5==0&&y%5==0){
out<<x<<” “<<y<<endl;
}
}
inp.close();
out.close();
//samon247
return 0;
}