コメント行 (つまり、# 記号で始まる行) を行末まで無視する必要があるコードを書いています。Linuxを使用してc ++でコーディングしています。例: 2 つの数値を加算する場合。
xxx@ubuntu:~ $ ./add
Enter the two numbers to be added
1 #this is the first number
2 #this is the second number
result: 3
したがって、コメント行はどこでもかまいません。行全体を無視して、次の値を入力として受け取るだけです。
#include <iostream>
using namespace std;
int main()
{
int a,b;
cout<< "Enter the two numbers to be added:\n";
while(cin >>a >>b)
{
if (a == '#'|| b == '#')
continue;
cout << "Result: "<<a+b;
}
return 0;
}