csu oj 1341 string and arrays

Posted hcw110

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csu oj 1341 string and arrays相关的知识,希望对你有一定的参考价值。

/*
#include <iostream>
using namespace std;
char c[301][301];
int t, n, m, sum, x, y;
char f(int n,int x,int y,int sum)
{
 if (sum == 0)return c[x][y];
 if (sum == 1)return c[y][n+1-x];
 if (sum == 2)return c[n + 1 - x][n + 1 - y];
 if (sum == 3)return c[n+1-y][x];
}
int main()
{
 ios_base::sync_with_stdio(false);
 char ch;
 cin >> t;
 while (t--)
 {
  cin >> n;
  for (int i = 1; i <= n; i++)
  for (int j = 1; j <= n; j++)
    cin >> c[i][j];
  cin >> m ;
  sum = 0;
  while (m--)
  {
   cin >> ch;
   if (ch == ‘R‘)sum++; 
   else
   {
    cin >> x >> y;
    cout << f(n,x,y,sum%4) << endl;
   }
  }
  cout << endl;
 }
 return 0;
}
*/
//--------------------
//本文来自 csuzhucong 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/nameofcsdn/article/details/79964870?utm_source=copy
/
#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
using namespace std;
int main()
{
 char s[6];
// for(int i=0;i<6;i++){
//  scanf("%c",&s[i]);
// }
// scanf("%s",s);
cin>>s;
    printf("%s",s); 
 cout<<s;
 return 0;
}
 

//cin和scanf("%s")很像,只能读入非空格符和非换行符,如果第一个输入的字符就是空格,则忽略;如果第一个不是空格,则读到有空格或者换行符为止
//scanf("%c")则可以读取输入空格符和换行符。当读入的字符串小于定义的空间时,即使输入换行符,也不会结束输入,只有输入的超过空间时,输入换行符才会停止输入
 // 如果输入的最后一个空间恰好是换行,则停止输入;
 
 
 
 
 
 
 

























































以上是关于csu oj 1341 string and arrays的主要内容,如果未能解决你的问题,请参考以下文章

csu oj 1804: 有向无环图 (dfs回溯)

CSU OJ 1340 A Sample Problem

USACO 4.4.2 追查坏牛奶 oj1341 网络流最小割问题

CSU OJ 2148 梦皮神

csu oj 1811: Tree Intersection (启发式合并)

CSU OJ1960